home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Purity / Purity #23 (1994-02-10)(Diesel)(DE)[WB].zip / Purity #23 (1994-02-10)(Diesel)(DE)[WB].adf / ForuM / hello_d.p < prev    next >
Text File  |  1994-01-20  |  542b  |  29 lines

  1. program hello_d;
  2.  
  3. {$I "Include:libraries/dos.i" }
  4.  
  5. {
  6.   ***********************************************************************
  7.  
  8.     Habe gerade PCQ 1.2d installiert - mal sehen, um wieviel
  9.     das Compilat kürzer ist als bei 1.2b ... naja, 2964-1260
  10.     macht immerhin 1704 Bytes. Long live 1.2d !!
  11.                             Diesel
  12.  
  13.   ***********************************************************************
  14. }
  15.  
  16.  
  17. VAR
  18.     wt : Integer;
  19.  
  20. begin
  21.  
  22.  wt := DosWrite(
  23.      DosOutPut(),
  24.      "\nDieser Code wurde mit PCQ1.2d compiliert\nund ist 1260 Bytes lang.\n ",
  25.      67);
  26.  
  27. end.
  28.  
  29.